/** 
 * 描述：重置页面元素，设置布局样式及公共模块
 * 作用范围：公共
 */

html,body {
	font: 14px/1.5 "微软雅黑",Verdana, Geneva, sans-serif,"microsoft yahei", Helvetica, Tahoma, Arial, "Microsoft jhengHei", sans-serif;
	color:#404040;
	background-color:#fff;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: #333;
}
a img {
	border: 0px;
}
a:hover {
	border: none;
	color: #0068b7;
	text-decoration: underline;
}
a:link, a:visited {
	transition: all 0.2s ease-in-out 0s;
}
textarea {
	overflow: auto;
	resize: none;
}

/* 布局样式 */
.fl {
	float: left;
}
.fr {
	float: right;
}
.wrapper {
	margin-left: auto;
	margin-right: auto;
	width: 1170px;
}

/* 公共独立类名 */
.hidden {
	display: none!important;
}
.block {
	display: block;
}

/* 实心小三角 */
.arrow {
	display: inline-block;
	width: 0;
	height: 0;
	line-height: 0;
	vertical-align: middle;
	border: 4px dashed transparent;
}
.arrow-down {
	border-top-style: solid;
	border-top-color: #000;
	border-bottom-width: 0;
}
.arrow-up {
	border-bottom-style: solid;
	border-bottom-color: #000;
	border-top-width: 0;
}
.arrow-left {
	border-right-style: solid;
	border-right-color: #000;
	border-left-width: 0;
}
.arrow-right {
	border-left-style: solid;
	border-left-color: #000;
	border-right-width: 0;
}